vcFrameSet
vcFrameSet is a type of geometry set that contains a collection of frames.
See in: Overview
Module: vcGeometry
Parent: vcGeometrySet
Children -
Referenced by: -
Properties
Learn how to use properties here. The properties are also inherited from the parent class.
| Name | Type | Access | Description |
| FrameCount | Integer | R | Gets the number of frames in set. |
Methods
Learn how to use methods here. The methods are also inherited from the parent class.
| Name | Return Type | Parameters | Description |
| createFrame | None | vcMatrix matrix | Creates a new frame in set. Parameters: matrix (vcMatrix): Frame transformation. |
| deleteFrame | None | Integer index | Deletes a frame at a given index from set.See moreParameters: index (int): The index of the frame. Exceptions: IndexError: When the index is out of range. |
| getFrame | vcMatrix | Integer index | Gets the position matrix of a frame at a given index in set.See moreParameters: index (int): The index of the frame. Exceptions: IndexError: When the index is out of range. |
| setFrame | None | Integer index, vcMatrix matrix | Sets the position matrix of a frame at a given index in set.See moreParameters: index (int): The index of the frame. matrix (vcMatrix): Frame transformation. Exceptions: IndexError: When the index is out of range. |
| update | None | None | Updates all frames in set, thereby updating the set's bounding box. |